emoji chooser: Actually force Emoji presentation
authorMatthias Clasen <mclasen@redhat.com>
Tue, 4 Dec 2018 02:46:09 +0000 (21:46 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 4 Dec 2018 02:47:53 +0000 (21:47 -0500)
The previous commit was using the text presentation selector
instead of the Emoji one. Oops.

gtk/gtkemojichooser.c

index d8124cb90fc55b412a919d2ba30a515a300e9a1d..c7b840037ba24f91542a93260830db284a9118dc 100644 (file)
@@ -361,7 +361,7 @@ add_emoji (GtkWidget    *box,
         p += g_unichar_to_utf8 (code, p);
     }
   g_variant_unref (codes);
-  p += g_unichar_to_utf8 (0xFE0E, p); /* U+FE0F is the Emoji variation selector */
+  p += g_unichar_to_utf8 (0xFE0F, p); /* U+FE0F is the Emoji variation selector */
   p[0] = 0;
 
   label = gtk_label_new (text);